home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 November / PCWorld_2006-11_cd.bin / system / innosetup / isetup-5.1.8.exe / {app} / Examples / 64Bit.iss next >
Text File  |  2006-10-03  |  1KB  |  33 lines

  1. ; -- 64Bit.iss --
  2. ; Demonstrates installation of a program built for the x64 (a.k.a. AMD64)
  3. ; architecture.
  4. ; To successfully run this installation and the program it installs,
  5. ; you must have the "x64" edition of Windows XP or Windows Server 2003.
  6.  
  7. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  8.  
  9. [Setup]
  10. AppName=My Program
  11. AppVerName=My Program version 1.5
  12. DefaultDirName={pf}\My Program
  13. DefaultGroupName=My Program
  14. UninstallDisplayIcon={app}\MyProg.exe
  15. Compression=lzma
  16. SolidCompression=yes
  17. OutputDir=userdocs:Inno Setup Examples Output
  18. ; "ArchitecturesAllowed=x64" specifies that Setup cannot run on
  19. ; anything but x64.
  20. ArchitecturesAllowed=x64
  21. ; "ArchitecturesInstallIn64BitMode=x64" requests that the install be
  22. ; done in "64-bit mode" on x64, meaning it should use the native
  23. ; 64-bit Program Files directory and the 64-bit view of the registry.
  24. ArchitecturesInstallIn64BitMode=x64
  25.  
  26. [Files]
  27. Source: "MyProg-x64.exe"; DestDir: "{app}"; DestName: "MyProg.exe"
  28. Source: "MyProg.chm"; DestDir: "{app}"
  29. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  30.  
  31. [Icons]
  32. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  33.